<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@CHARSET "UTF-8";
.cls {
	clear: both;
}
a:focus { outline: none; }
.menu {
	position:relative;
	height: 40px;
	display: block;
	padding-top:40px;
	width: 700px;
	margin-right: 40px;
	margin-bottom: 0px;
	margin-left: auto;
}
.menu ul {
	list-style: none;
	padding: 0px;
	margin: 0;
}
.menu ul li {
	/* width and height of the menu items */  
	float: left;
	overflow: hidden;
	position: relative;
	line-height: 40px;
	text-align: center;
}
.menu ul li a {
	/* must be postioned relative  */ 
	position: relative;
	display: block;
	width: 110px;
	height: 40px;
	font-family: "å¯°î†¿è’‹é—†å‘´ç²¦", "ç€¹å¬©ç¶‹";
	font-size: 20px;
	text-decoration: none;
	cursor: pointer;
}
.menu ul li a span {
	/* all layers will be absolute positioned */
	position: absolute;
	left: 0;
	width: 110px;
}
	.menu ul li a span.out {
	top: 0px;
}
	.menu ul li a span.over,
	.menu ul li a span.bg {
	/* hide */  
	top: -40px;
}
		/** 1st example **/
#menu1 {
	background-repeat: repeat-x;
	background-position: 0px 0px;
	background-attachment:fixed;
}
#menu1 ul li a {
	color: #000;
}
#menu1 ul li a span.over {
	color: #FFF;
}
#menu1 ul li span.bg {
	/* height of the menu items */
	height: 40px;
	background-image: url(../images/bg_over.png);
	background-repeat: repeat;
	background-position: center center;
}
</pre></body></html>